home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / dev / c / Mesa_2_0_Amiga.readme < prev    next >
Text File  |  1996-11-03  |  41KB  |  866 lines

  1. Short:    3D library, OpenGL based, Amiga v1.5
  2. Author:   brianp@ssec.wisc.edu (BrianP) Amiga Port: d94sz@efd.lth.se (Stefan Zivkovic)
  3. Uploader: d94sz@efd.lth.se (Stefan Zivkovic)
  4. Version:  Mesa v2.0 Amiga version 1.5
  5. Type:     dev/c
  6. Requires: System v39, SAS C Compiler 6.56
  7. Replaces: dev/c/Mesa-1.2.8.lha
  8.  
  9.                 The Mesa 3-D graphics library
  10.  
  11.                     Version 2.0
  12.  
  13.              Copyright (C) 1995-1996  Brian Paul
  14.  
  15.  
  16.  
  17. Introduction
  18. ============
  19.  
  20. Mesa is a 3-D graphics library with an API which is very similar to that
  21. of OpenGL*.  To the extent that Mesa utilizes the OpenGL command syntax
  22. or state machine, it is being used with authorization from Silicon Graphics,
  23. Inc.    However, the author makes no claim that Mesa is in any way a
  24. compatible replacement for OpenGL or associated with Silicon Graphics, Inc.
  25. Those who want a licensed implementation of OpenGL should contact a licensed
  26. vendor.    This software is distributed under the terms of the GNU Library
  27. General Public License, see the LICENSE file for details.
  28.  
  29. * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
  30.  
  31. Miscellaneous
  32. =============
  33.  
  34. There is a Amiga Mesa WWW page:    http://www.efd.lth.se/~d94sz/amesa
  35. and the orginal  Mesa WWW page:    http://www.ssec.wisc.edu/~brianp/Mesa.html
  36.  
  37.  
  38. Since the OpenGL API is used, OpenGL documentation can serve as the
  39. documentation for Mesa's core functions.  Here are a few sources:
  40.  
  41.   Man pages:     http://www.digital.com:80/pub/doc/opengl/
  42.   Spec doc:      http://www.sgi.com/Technology/openGL/glspec/glspec.html
  43.  
  44.  
  45. Author
  46. ======
  47.  
  48. Brian Paul
  49. Space Science and Engineering Center
  50. University of Wisconsin - Madison
  51. 1225 W. Dayton St.
  52. Madison, WI  53706
  53.  
  54. brianp@ssec.wisc.edu
  55.  
  56.  
  57. AMIGA PORT of MESA: THE OPENGL SOFTWARE EMULATION by Stefan Zivkovic
  58. ====================================================================
  59. When I first read about OPENGL in the summer of 1995 I was happy and filled with
  60. joy. A few days later I surfed to the mesa homepage but only to discover that 
  61. there was no Amiga version. In the beginning of 1996 someone released a AMIWIN
  62. version so I took the archive home to try it out, but it stayed packed on my HD.
  63. One day when I was home and playing around with my HD I saw the archive and
  64. started to try to make it work. Without luck as it seemed that you needed 
  65. the AMIWIN Includes and LIBFILES. But I also discovered that it was possible
  66. to port it with not to much effort (WRONG THERE) so I begun.
  67.  
  68. For the Amiga there is only three important files + one directory.
  69.  
  70. src/Amigamesa.c        The mesa GL Amiga implementation 
  71.             (ddsample.c with some Amiga code)
  72. src-tk/Awindow.c    The tk (and aux) machine specific code)
  73. include/GL/Amigamesa.h    The prototypes for Amigamesa
  74.  
  75. Amiga/#?
  76.  
  77. Installing
  78. ==========
  79. To spread the amiga files over the archive you will nead lha in your path
  80. and run the installer script in /amiga (or just unpack AMesa.lha yourself)
  81.  
  82. Compiling
  83. =========
  84. Just execute mklib.amiga (will appear if you have installed it correctly)
  85.  
  86. About the code.
  87. ===============
  88. The Code is compiled with cpu=020 math=ieee 
  89. If you would like it different then use the /Amiga/scoptions read next statement
  90.  
  91. The common scoptions file is in /Amiga
  92. Here exists a scoption that is used in the WHOLE package, change math here
  93. and it will reflect in all dirs
  94.  
  95. In /Amiga/library there are previews of files to the shared-library version
  96. (This doesn't work yet but should give you an idea of how to use it)
  97.  
  98. In /Amiga/Examples there should be some amiga-demo code,
  99. but I've got no code yet so feel free to send me your own examples.
  100.  
  101. In this state it only renders on a window on a up-to 256 col display but I
  102. have plans to port it to CyberGFX the problem is that I don't own a gfx-card
  103. so this is very low on my priority list, this could change if I had one :)
  104.  
  105. All tk actions in tkExec are not finished. But most of them is. (low priority)
  106.  
  107. Most of the examples work. (ALL?)
  108.  
  109. etc. etc.
  110.  
  111. Write your own OpenGL code
  112. ==========================
  113. 1. For a easy start, look at the examples in /book/ and modify them
  114.    The examples uses a portable layer toolkit Not amiga specific at all
  115.  
  116. Until The shared library is ready you have to define AMIGALIB when
  117. using <GL/gl.h>
  118.  
  119. 2. For a better amigaprogram just open a window (on your favourite screen) and
  120.     add a few lines in your source:
  121.  
  122. -----------------------------------------------------------------------------
  123. /* ADD where you want it  */
  124. #include <GL/gl.h>
  125.  
  126. Init()         /* sets up viewport and projections */
  127.   {
  128.   glMatrixMode (GL_PROJECTION);      /*    prepare for and then */ 
  129.   glLoadIdentity ();         /*  define the projection */
  130.   glFrustum (-1.0, 1.0, -1.0, 1.0, 1.5, 20.0);/*  transformation */
  131.   glMatrixMode (GL_MODELVIEW);    /*  back to modelview matrix*/
  132.   glViewport (0, 0, 200, 200);    /*  define the viewport     */
  133. }     /*          ^  ^  ^^^  ^^^--- The size of the mesa/openGL window  */
  134.     
  135.  
  136.  
  137. /* ADD In after you opened your window */
  138.  
  139. struct amigamesa_context *glcont;
  140.  
  141.     glcont=AmigaMesaCreateContextTags( 
  142.                         AMA_DrawMode,AMESA_AGA,
  143.                         AMA_Window,(unsigned long)        test_window,    // My Windowptr
  144.                         AMA_RastPort,(unsigned long)    test_window->RPort,
  145.                         AMA_Screen,(unsigned long)        test_window->WScreen,
  146.                         AMA_DoubleBuf,                        GL_FALSE, // or GL_TRUE
  147.                         AMA_RGBMode,                        GL_TRUE, //   -"-
  148.                         AMA_Left,                            test_window->BorderLeft,          // offset from left edgr
  149.                         AMA_Bottom,                            test_window->BorderBottom+1,    // offset from bottom edgr
  150.                         TAG_DONE,0);
  151.  
  152. // Neaded tags is   AMA_RastPort,AMA_Screen   if you supply AMA_Window
  153. // it looks for RastPort and Screen in it so a Window_ptr will do.
  154.  
  155. if (glcont)
  156.  {
  157.  AmigaMesaMakeCurrent(glcont,glcont->buffer);
  158.  /* All your gl comands */
  159.  /*handle_window_events(test_window);    or whatever */
  160.  AmigaMesaDestroyContext(glcont);
  161. }
  162.  
  163. /* Don't forget to call glViewport() when you resize the window */
  164. ------------------------------------------------------------------------------
  165. if you set doublebuff to GL_TRUE then you just switch buffer with
  166. AmigaMesaSwapBuffers(glcont);
  167.  
  168. For more info on the internal of the Amiga port you can check the files
  169.   src/Amigamesa.c and include/GL/Amigamesa.h for tk check src-tk/Awindow.c
  170. And info on how to write your own gfx-routines read include/GL/amigamesa.h for
  171. more instructions.
  172.  
  173. THINGS THAT MAY GO WRONG
  174. ========================
  175. WARNING The api has changed on AmigaMesaCreateContext() it is now called with
  176.     a taglist. Read /include/GL/amigamesa.h
  177.  
  178. Scoptions that should not be changed is  Precision=MIXED, NoStackExtend, NoStackCheck.
  179.  
  180. It compiles but all examples crash everytime: 
  181.     Set your stack high about 50kb or more.
  182.  
  183. Linking complains about not finding _glBegin(): or @glBegin():
  184.     You have compiled some code using the stack and some using registers as
  185.     parameter passing, You have to chose one of them and us it on both places.
  186.  
  187. The colors are really bad:
  188.     To emulate 24bit I alloc 255 colors in the beginning spread over the
  189.     palette and then use it. If you'd like better colors, buy a GFX-Card.
  190.     (And wait for gfx-card versions.)
  191.  
  192. Resizing is sometimes very very unhealthy.
  193.  
  194.  
  195. LATEST VERSION:
  196. ===============
  197. http://www.efd.lth.se/~d94sz/amesa
  198.  
  199. TODO:
  200. =====
  201. Debugg.
  202. Fix resizing bug.
  203. All tk stuff.
  204. CyberGFX driver.
  205. Make some amiga examples code (please send in your smal programs).
  206.  
  207. FUTURE:
  208. =======
  209. A shared library would be nice. (I have started)
  210. Faster and better. (You may have some nice idea?)
  211. CyberGFX support. (I don't have a Gfx card myself, but any offer to
  212.                          give me one would result in CyberGFX support :)
  213.  
  214. HISTORY:
  215. ========
  216.         
  217. Release:
  218. 0.8 This code worked with Mesa 1.2.6 and all makefiles also.
  219.      But when I released it, Mesa 1.2.7 was released and some changes were made.
  220.      It didn't work.
  221.  
  222. 0.9 Makefiles is remapped to work with Mesa 1.2.7.
  223.      Double buffering works.
  224.      Implemented fast_poly_draw (big speed improvement).
  225.      tkExec a few more tests were done. (right & middle mousebutton is not
  226.      implemented)
  227.  
  228. 1.0 I've put a common scoption file in /Amiga (thanks to Kamil Iskra).
  229.      Due to the common scoptions you can change CPU and math more easy ,and
  230.      compiler options set to default math=ieee, cpu=020 so that it works on 
  231.      1200's and up 
  232.      Many bugfixes (thanks to Daniel Jönsson).
  233.      Have fixed the smakefile name collision with AMIWIN version.
  234.      Mesa 1.2.8 Fixed.
  235.      Spellcorrection of the docs were made by Peter Sandén.
  236.      (Blame him, not me!) 
  237.      All tk's windows are opened on a pubscreen named "MESA" if it exists.
  238.  
  239. 1.1 Faster and more stable (Many thanks to Jorge Acereda (JAM))
  240.      Faster pen usage now it allocates 255 pens and use them (thanks to
  241.      Stefan Burström)
  242.      A few enhancements here and there.
  243.      Fixed a smake bug ignore=A only works in the latest SAS version. Now I
  244.      have changed it to IGN=ALL (Thanx to everyone who reported this one)
  245.  
  246. 1.2 Removed math from smakefiles, SAS handles this better self. (Kamil Iskra)
  247.      Fixed a serious drawing bug (appeared when using GL_SMOTH).
  248.     Fixed a very flexible programming API for future gfx-board implementations
  249.      Added a BOOL AmigaMesaSetDefs(struct TagItem *tagList); usefull for future enhancements
  250.     ***'API change: AmigaMesaCreateContext uses taglist se include/GL/amigamesa.h
  251.     Faster on doublebuffer rendering. (Now I convert whole double buffer c2p)
  252.     Easier to integrate future gfx-cards routines. Look in include/GL/amigamesa.h
  253.     tk toolkit fixed to work better. Thanks to Georg 'Wulf' Krämer
  254.  
  255. 1.4 Uppdated to reflect Mesa 2.0
  256.      Small Bugfixes. Relesed With Mesa 2.0
  257.  
  258. 1.5 A few bugs intruduced in 1.4 was fixed (a workaround SAS oml/slink bug)
  259.     Due to a bug in SAS (oml/slink) 1.4 didn't work, this version should work better.
  260.     
  261. Please contact me with suggestions and additional info. 
  262. You can reach me at: 
  263.  
  264. d94sz@efd.lth.se
  265.  
  266. Or mail:
  267.  
  268. Stefan Zivkovic
  269. Kämnärsv. 9L:225
  270. 226 46 LUND
  271.  
  272. Or Phone:
  273. +46 46 150763
  274.  
  275.  
  276. ============================= Archive contents =============================
  277.  
  278. Original  Packed Ratio    Date     Time    Name
  279. -------- ------- ----- --------- --------  -------------
  280.     2996    1007 66.3% 14-Oct-96 00:02:54 +AmigaMesa.Install
  281.     1919    1046 45.4% 14-Oct-96 00:02:54 +AmigaMesa.Install.info
  282.     1351     457 66.1% 14-Oct-96 00:02:52 +Build.info
  283.      290     174 40.0% 14-Oct-96 00:02:52 +SCoptions
  284.     1736    1047 39.6% 14-Oct-96 00:02:52 +SCoptions.info
  285.    23724    9656 59.2% 14-Oct-96 00:02:52 +FileReplace
  286.     4194    1538 63.3% 14-Oct-96 00:02:52 +FileReplace.cpp
  287.    58311    6554 88.7% 14-Oct-96 00:02:52 +Fixprotos
  288.    17967    3208 82.1% 14-Oct-96 00:02:52 +gl.fd
  289.    53801   10162 81.1% 14-Oct-96 00:02:52 +gl.h
  290.    15499    2560 83.4% 14-Oct-96 00:02:52 +gl_pragma.h
  291.      576     286 50.3% 14-Oct-96 00:02:52 +installscript
  292.     4472    1501 66.4% 14-Oct-96 00:02:54 +ht__colors.a
  293.     7502    1283 82.8% 14-Oct-96 00:02:54 +ht_colors.c
  294.      435     250 42.5% 14-Oct-96 00:02:54 +ht_colors.h
  295.      311     184 40.8% 14-Oct-96 00:02:54 +SCOPTIONS
  296.     1674    1076 35.7% 14-Oct-96 00:02:54 +SCoptions.info
  297.     5293    2274 57.0% 29-Oct-96 19:33:28 +accanti.c
  298.     4594    1969 57.1% 29-Oct-96 19:33:28 +accnot.c
  299.     7270    2786 61.6% 29-Oct-96 19:33:28 +accpersp.c
  300.     8368    3572 57.3% 29-Oct-96 19:33:28 +accum.c
  301.     3893    1985 49.0% 29-Oct-96 19:33:28 +aim.c
  302.     3446    1705 50.5% 29-Oct-96 19:33:30 +alpha.c
  303.     4393    2040 53.5% 29-Oct-96 19:33:30 +alpha3D.c
  304.     3802    1888 50.3% 29-Oct-96 19:33:30 +anti.c
  305.     3643    1859 48.9% 29-Oct-96 19:33:30 +antiindex.c
  306.     3646    1825 49.9% 29-Oct-96 19:33:30 +antipindex.c
  307.     3483    1755 49.6% 29-Oct-96 19:33:30 +antipoint.c
  308.     4613    2088 54.7% 29-Oct-96 19:33:30 +antipoly.c
  309.     3451    1738 49.6% 29-Oct-96 19:33:30 +bezcurve.c
  310.     4291    1961 54.2% 29-Oct-96 19:33:30 +bezmesh.c
  311.     3900    1846 52.6% 29-Oct-96 19:33:30 +bezsurf.c
  312.     4487    2007 55.2% 29-Oct-96 19:33:30 +checker.c
  313.     4491    2009 55.2% 29-Oct-96 19:33:30 +checker2.c
  314.     4356    1958 55.0% 29-Oct-96 19:33:30 +chess.c
  315.     3258    1667 48.8% 29-Oct-96 19:33:30 +clip.c
  316.     4380    1925 56.0% 29-Oct-96 19:33:32 +colormat.c
  317.     4443    1973 55.5% 29-Oct-96 19:33:32 +cone.c
  318.     3393    1735 48.8% 29-Oct-96 19:33:32 +cube.c
  319.     3567    1793 49.7% 29-Oct-96 19:33:32 +curve.c
  320.     3410    1750 48.6% 29-Oct-96 19:33:32 +depthcue.c
  321.     3946    1819 53.9% 29-Oct-96 19:33:32 +disk.c
  322.     8330    3303 60.3% 29-Oct-96 19:33:32 +dof.c
  323.     5508    2453 55.4% 29-Oct-96 19:33:32 +dofnot.c
  324.     3869    1857 52.0% 29-Oct-96 19:33:32 +double.c
  325.     3278    1639 50.0% 29-Oct-96 19:33:32 +drawf.c
  326.     5018    2192 56.3% 29-Oct-96 19:33:32 +feedback.c
  327.     5439    2462 54.7% 29-Oct-96 19:33:32 +fog.c
  328.     4311    1982 54.0% 29-Oct-96 19:33:32 +fogindex.c
  329.    11691    3060 73.8% 29-Oct-96 19:33:32 +font.c
  330.    10102    1293 87.2% 29-Oct-96 19:33:28 +Imakefile
  331.     5900    2703 54.1% 29-Oct-96 19:33:32 +jitter.h
  332.     3636    1788 50.8% 29-Oct-96 19:33:32 +light.c
  333.     3549    1717 51.6% 29-Oct-96 19:33:32 +linelist.c
  334.     4194    1925 54.1% 29-Oct-96 19:33:32 +lines.c
  335.     3504    1762 49.7% 29-Oct-96 19:33:32 +list.c
  336.     3665    1824 50.2% 29-Oct-96 19:33:32 +list2.c
  337.     1448     766 47.0% 29-Oct-96 19:33:28 +Makefile
  338.     3915    1909 51.2% 29-Oct-96 19:33:32 +maplight.c
  339.    10835    2650 75.5% 29-Oct-96 19:33:34 +material.c
  340.     5538    2176 60.7% 29-Oct-96 19:33:34 +mipmap.c
  341.     3821    1799 52.9% 29-Oct-96 19:33:34 +model.c
  342.     4343    2091 51.8% 29-Oct-96 19:33:34 +movelight.c
  343.     1868     727 61.0% 29-Oct-96 19:33:28 +NOTES
  344.     5996    2451 59.1% 29-Oct-96 19:33:34 +nurbs.c
  345.     5554    2531 54.4% 29-Oct-96 19:33:34 +pickdepth.c
  346.     4440    2087 52.9% 29-Oct-96 19:33:34 +pickline.c
  347.     5590    2554 54.3% 29-Oct-96 19:33:34 +picksquare.c
  348.     5220    2052 60.6% 29-Oct-96 19:33:34 +plane.c
  349.     3720    1808 51.3% 29-Oct-96 19:33:36 +planet.c
  350.     3870    1836 52.5% 29-Oct-96 19:33:36 +planetup.c
  351.     4610    1843 60.0% 29-Oct-96 19:33:36 +polys.c
  352.     2260    1229 45.6% 29-Oct-96 19:33:28 +README
  353.     3868    1806 53.3% 29-Oct-96 19:33:36 +robot.c
  354.     4236    1935 54.3% 29-Oct-96 19:33:36 +sccolorlight.c
  355.     4210    1918 54.4% 29-Oct-96 19:33:36 +scene.c
  356.     4084    1856 54.5% 29-Oct-96 19:33:36 +scenebamb.c
  357.     4114    1875 54.4% 29-Oct-96 19:33:36 +sceneflat.c
  358.        0       0  0.0% 14-Oct-96 00:02:56 +SCOPTIONS
  359.     7002    2754 60.6% 29-Oct-96 19:33:36 +select.c
  360.     2589    1390 46.3% 29-Oct-96 19:33:36 +simple.c
  361.     2431    1129 53.5% 14-Oct-96 00:02:54 +Smakefile
  362.     3243    1646 49.2% 29-Oct-96 19:33:36 +smooth.c
  363.     3014    1577 47.6% 29-Oct-96 19:33:36 +sphere.c
  364.     5314    2269 57.3% 29-Oct-96 19:33:38 +stencil.c
  365.     5057    2203 56.4% 29-Oct-96 19:33:38 +stroke.c
  366.     4416    2101 52.4% 29-Oct-96 19:33:38 +surface.c
  367.     4894    2121 56.6% 29-Oct-96 19:33:38 +tea.c
  368.     4655    1991 57.2% 29-Oct-96 19:33:38 +teaambient.c
  369.     7340    2903 60.4% 29-Oct-96 19:33:38 +teapots.c
  370.     4342    2038 53.0% 29-Oct-96 19:33:38 +texgen.c
  371.     4850    2150 55.6% 29-Oct-96 19:33:38 +texturesurf.c
  372.     5208    2340 55.0% 29-Oct-96 19:33:40 +trim.c
  373.     4369    2196 49.7% 29-Oct-96 19:33:40 +xfont.c
  374.     3243    1320 59.2% 29-Oct-96 19:33:20 +bounce.c
  375.     1573     585 62.8% 29-Oct-96 19:33:20 +fdraw.f
  376.      858     455 46.9% 29-Oct-96 19:33:20 +ftest.c
  377.     4708     964 79.5% 29-Oct-96 19:33:20 +gamma.c
  378.     7682    2033 73.5% 29-Oct-96 19:33:20 +gears.c
  379.     2403    1068 55.5% 29-Oct-96 19:33:20 +glxdemo.c
  380.     3628    1540 57.5% 29-Oct-96 19:33:20 +glxpixmap.c
  381.     2004     433 78.3% 29-Oct-96 19:33:18 +Imakefile
  382.     6091    2032 66.6% 29-Oct-96 19:33:20 +isosurf.c
  383.   418278   67175 83.9% 29-Oct-96 19:33:26 +isosurf.dat
  384.     1513     864 42.8% 29-Oct-96 19:33:18 +Makefile
  385.     8024    3265 59.3% 29-Oct-96 19:33:20 +offset.c
  386.     3420    1329 61.1% 29-Oct-96 19:33:20 +osdemo.c
  387.     8459    2559 69.7% 29-Oct-96 19:33:20 +reflect.c
  388.        0       0  0.0% 14-Oct-96 00:02:56 +SCOPTIONS
  389.     2692    1248 53.6% 14-Oct-96 00:02:56 +Smakefile
  390.     2827    1004 64.4% 29-Oct-96 19:33:20 +spin.c
  391.     8054    2613 67.5% 29-Oct-96 19:33:20 +tess_demo.c
  392.     1380     606 56.0% 29-Oct-96 19:33:20 +test0.c
  393.     6460    1838 71.5% 29-Oct-96 19:33:20 +texobj.c
  394.     7048    1869 73.4% 29-Oct-96 19:33:20 +vgears.c
  395.     1039     565 45.6% 29-Oct-96 19:33:20 +vindex.c
  396.     1352     565 58.2% 29-Oct-96 19:33:20 +vtest.c
  397.     1866     918 50.8% 29-Oct-96 19:33:22 +winpos.c
  398.     7536    2187 70.9% 29-Oct-96 19:33:22 +xdemo.c
  399.      479     265 44.6% 29-Oct-96 19:32:48 +IAFA-PACKAGE
  400.      161     117 27.3% 29-Oct-96 19:32:48 +Imakefile
  401.    10401    3960 61.9% 14-Oct-96 00:02:56 +Amigamesa.h
  402.    36296    6816 81.2% 29-Oct-96 19:32:50 +fgl.h
  403.     1953     841 56.9% 29-Oct-96 19:32:50 +FooMesa.h
  404.    45105    9733 78.4% 29-Oct-96 19:32:50 +gl.h
  405.    10582    3153 70.2% 29-Oct-96 19:32:50 +glu.h
  406.     5393    1972 63.4% 29-Oct-96 19:32:50 +glx.h
  407.     2740    1203 56.0% 29-Oct-96 19:32:50 +gmesa.h
  408.     6235    2413 61.2% 29-Oct-96 19:32:52 +osmesa.h
  409.     2390    1130 52.7% 29-Oct-96 19:32:52 +svgamesa.h
  410.     2614    1211 53.6% 29-Oct-96 19:32:52 +wmesa.h
  411.     6357    2194 65.4% 29-Oct-96 19:32:52 +xmesa.h
  412.     7747    2504 67.6% 29-Oct-96 19:32:50 +glaux.h
  413.     6355    2144 66.2% 29-Oct-96 19:32:50 +gltk.h
  414.      917     325 64.5% 29-Oct-96 19:32:52 +clgd5470.h
  415.     1112     394 64.5% 29-Oct-96 19:32:52 +clgd5471.h
  416.      627     294 53.1% 29-Oct-96 19:32:52 +clgd5472.h
  417.     2227     891 59.9% 29-Oct-96 19:32:52 +clgd547x.h
  418.     2393    1142 52.2% 29-Oct-96 19:32:52 +cmesa.h
  419.     6800    1502 77.9% 29-Oct-96 19:32:52 +compiler.h
  420.    27511    5364 80.5% 29-Oct-96 19:32:52 +davinci.h
  421.     3891     839 78.4% 29-Oct-96 19:32:52 +graphics.h
  422.      114     105  7.8% 29-Oct-96 19:32:52 +lut.h
  423.      157      99 36.9% 29-Oct-96 19:32:52 +misc.h
  424.     1940     528 72.7% 29-Oct-96 19:32:52 +type.h
  425.    25267    9285 63.2% 29-Oct-96 19:32:48 +LICENSE
  426.    20197    3775 81.3% 29-Oct-96 19:32:48 +Make-config
  427.     9208    2567 72.1% 29-Oct-96 19:32:48 +Makefile
  428.     3235    1458 54.9% 29-Oct-96 19:32:48 +mklib.aix
  429.      523     203 61.1% 14-Oct-96 00:02:50 +mklib.amiga
  430.      555     210 62.1% 29-Oct-96 19:32:48 +mklib.amiwin
  431.      444     288 35.1% 29-Oct-96 19:32:48 +mklib.freebsd
  432.      611     375 38.6% 29-Oct-96 19:32:50 +mklib.hpux
  433.      923     551 40.3% 29-Oct-96 19:32:50 +mklib.irix5
  434.      914     549 39.9% 29-Oct-96 19:32:50 +mklib.irix6-32
  435.      916     551 39.8% 29-Oct-96 19:32:50 +mklib.irix6-64
  436.      917     549 40.1% 29-Oct-96 19:32:50 +mklib.irix6-n32
  437.     1003     557 44.4% 29-Oct-96 19:32:50 +mklib.linux
  438.      523     296 43.4% 29-Oct-96 19:32:50 +mklib.netbsd
  439.      557     296 46.8% 29-Oct-96 19:32:50 +mklib.solaris
  440.    11470    3089 73.0% 29-Oct-96 19:34:08 +clgd5470.c
  441.     4558     968 78.7% 29-Oct-96 19:34:10 +clgd5471.c
  442.    17655    4326 75.4% 29-Oct-96 19:34:10 +clgd5472.c
  443.     6646    2071 68.8% 29-Oct-96 19:34:10 +clgd547x.c
  444.     2870     658 77.0% 29-Oct-96 19:34:10 +clrtemp.h
  445.     2674    1030 61.4% 29-Oct-96 19:34:08 +CREDITS
  446.    10931    2455 77.5% 29-Oct-96 19:34:10 +graphics.c
  447.     4394    1160 73.6% 29-Oct-96 19:34:10 +linetemp.h
  448.      904     438 51.5% 29-Oct-96 19:34:08 +Makefile
  449.     2114     673 68.1% 29-Oct-96 19:34:10 +misc.c
  450.      286     194 32.1% 29-Oct-96 19:34:10 +modes.h
  451.      790     459 41.8% 29-Oct-96 19:34:08 +NOTES
  452.     1224     666 45.5% 29-Oct-96 19:34:08 +README
  453.    13449    3789 71.8% 29-Oct-96 19:34:10 +tritemp.h
  454.     1644     565 65.6% 29-Oct-96 19:34:10 +tst.c
  455.     1736     917 47.1% 29-Oct-96 19:34:08 +Makefile.NeXT
  456.     4024    1693 57.9% 29-Oct-96 19:34:08 +nextdemo1.m
  457.     6577    2914 55.6% 29-Oct-96 19:34:08 +nextdemo2.m
  458.     8794    3586 59.2% 29-Oct-96 19:34:08 +nextdemo3.m
  459.     6327    2866 54.7% 29-Oct-96 19:34:08 +nextdemo4.m
  460.    11956    3290 72.4% 29-Oct-96 19:34:08 +nextdemo5.m
  461.     6356    2944 53.6% 29-Oct-96 19:34:08 +nextdemo6.m
  462.     3520    1644 53.2% 29-Oct-96 19:34:08 +README
  463.     4166    1975 52.5% 29-Oct-96 19:34:08 +README.rtf
  464.    50046   11458 77.1% 29-Oct-96 19:34:12 +context.c
  465.    35417    9192 74.0% 29-Oct-96 19:34:12 +MesaGl32.c
  466.     5807    1425 75.4% 29-Oct-96 19:34:12 +MesaGl32.def
  467.     1846     753 59.2% 29-Oct-96 19:34:12 +MesaGl32.h
  468.     1812     364 79.9% 29-Oct-96 19:34:12 +profile.h
  469.      226     165 26.9% 29-Oct-96 19:34:12 +README
  470.     3783    1151 69.5% 29-Oct-96 19:34:12 +wmesadef.h
  471.    31918   12786 59.9% 29-Oct-96 19:32:48 +README
  472.     9733    4600 52.7% 14-Oct-96 00:02:50 +README.AMIGA
  473.     7075    2693 61.9% 29-Oct-96 19:32:48 +README.AMIWIN
  474.     2137    1108 48.1% 29-Oct-96 19:32:48 +README.GLUT
  475.      250     178 28.8% 29-Oct-96 19:32:48 +README.OS2
  476.    51607   40654 21.2% 29-Oct-96 19:33:42 +1.rgb
  477.    39632   34493 12.9% 29-Oct-96 19:33:42 +2.rgb
  478.    89287   55470 37.8% 29-Oct-96 19:33:42 +3.rgb
  479.    45167   32654 27.7% 29-Oct-96 19:33:42 +4.rgb
  480.     3598    1527 57.5% 29-Oct-96 19:33:42 +accum.c
  481.     6263    2001 68.0% 29-Oct-96 19:33:42 +bitmap1.c
  482.    42311    4050 90.4% 29-Oct-96 19:33:42 +bitmap2.c
  483.     7279    1997 72.5% 29-Oct-96 19:33:44 +blendeq.c
  484.     3642    1354 62.8% 29-Oct-96 19:33:44 +blendxor.c
  485.     4311    1828 57.5% 29-Oct-96 19:33:44 +copy.c
  486.     4365    1648 62.2% 29-Oct-96 19:33:44 +cursor.c
  487.     5187    1829 64.7% 29-Oct-96 19:33:44 +depth.c
  488.    10722    3179 70.3% 29-Oct-96 19:33:44 +eval.c
  489.     7175    2306 67.8% 29-Oct-96 19:33:44 +fog.c
  490.     5784    2040 64.7% 29-Oct-96 19:33:44 +font.c
  491.     4256     677 84.0% 29-Oct-96 19:33:40 +Imakefile
  492.     4420    1849 58.1% 29-Oct-96 19:33:44 +line.c
  493.    36486    6004 83.5% 29-Oct-96 19:33:44 +logo.c
  494.     1173     632 46.1% 29-Oct-96 19:33:40 +Makefile
  495.     1224     587 52.0% 29-Oct-96 19:33:40 +NOTES
  496.     6494    2230 65.6% 29-Oct-96 19:33:44 +nurb.c
  497.     5220    1744 66.5% 29-Oct-96 19:33:44 +oglinfo.c
  498.     9090    3260 64.1% 29-Oct-96 19:33:44 +olympic.c
  499.     8343    2838 65.9% 29-Oct-96 19:33:44 +overlay.c
  500.     4772    1862 60.9% 29-Oct-96 19:33:44 +point.c
  501.    11544    2475 78.5% 29-Oct-96 19:33:44 +prim.c
  502.    10726    3291 69.3% 29-Oct-96 19:33:44 +quad.c
  503.    14414    2864 80.1% 29-Oct-96 19:33:40 +README
  504.        0       0  0.0% 14-Oct-96 00:02:56 +SCOPTIONS
  505.     9312    2887 68.9% 29-Oct-96 19:33:46 +select.c
  506.     5761    2028 64.7% 29-Oct-96 19:33:46 +shape.c
  507.     2851    1281 55.0% 14-Oct-96 00:02:56 +Smakefile
  508.     8879    3008 66.1% 29-Oct-96 19:33:46 +speed.c
  509.    18213    4752 73.9% 29-Oct-96 19:33:46 +sphere.c
  510.     7089    2623 62.9% 29-Oct-96 19:33:46 +star.c
  511.     3385    1452 57.1% 29-Oct-96 19:33:46 +stencil.c
  512.     8504    2701 68.2% 29-Oct-96 19:33:46 +stretch.c
  513.     7892    2524 68.0% 29-Oct-96 19:33:46 +texture.c
  514.     8333    2830 66.0% 29-Oct-96 19:33:46 +tri.c
  515.    15073    4374 70.9% 29-Oct-96 19:33:46 +wave.c
  516.     1176     263 77.6% 29-Oct-96 19:32:54 +3d.h
  517.      425     263 38.1% 29-Oct-96 19:32:54 +font.c
  518.     9720    2326 76.0% 29-Oct-96 19:32:56 +glaux.c
  519.      226     143 36.7% 29-Oct-96 19:32:56 +image.c
  520.      598     322 46.1% 29-Oct-96 19:32:54 +Imakefile
  521.     1327     747 43.7% 29-Oct-96 19:32:52 +Makefile
  522.     1414     802 43.2% 29-Oct-96 19:32:54 +Makefile.NeXT
  523.     1838     593 67.7% 29-Oct-96 19:32:54 +Mesaauxos2.def
  524.      117      86 26.4% 29-Oct-96 19:32:54 +Mesaauxos2.rsp
  525.        0       0  0.0% 14-Oct-96 00:03:00 +SCOPTIONS
  526.    27796    5155 81.4% 29-Oct-96 19:32:56 +shapes.c
  527.     2524    1207 52.1% 14-Oct-96 00:03:00 +Smakefile
  528.     6711    1782 73.4% 29-Oct-96 19:32:56 +teapot.c
  529.     3046    1078 64.6% 29-Oct-96 19:32:56 +vect3d.c
  530.     2335     647 72.2% 29-Oct-96 19:32:56 +xxform.c
  531.      732     160 78.1% 29-Oct-96 19:32:54 +depend
  532.     7554    2675 64.5% 29-Oct-96 19:32:56 +glu.c
  533.     1593     820 48.5% 29-Oct-96 19:32:56 +gluP.h
  534.      725     348 52.0% 29-Oct-96 19:32:54 +Imakefile
  535.     1690     922 45.4% 29-Oct-96 19:32:54 +Makefile
  536.     1537     549 64.2% 29-Oct-96 19:32:54 +MesaGLUos2.def
  537.      180     104 42.2% 29-Oct-96 19:32:54 +MesaGLUos2.rsp
  538.    16830    4247 74.7% 29-Oct-96 19:32:56 +mipmap.c
  539.    15792    3694 76.6% 29-Oct-96 19:32:56 +nurbs.c
  540.     5282    1808 65.7% 29-Oct-96 19:32:56 +nurbs.h
  541.    12735    3095 75.6% 29-Oct-96 19:32:56 +nurbscrv.c
  542.    37132    6346 82.9% 29-Oct-96 19:32:56 +nurbssrf.c
  543.    23677    5465 76.9% 29-Oct-96 19:32:58 +nurbsutl.c
  544.    26481    6530 75.3% 29-Oct-96 19:32:58 +polytest.c
  545.     6078    2278 62.5% 29-Oct-96 19:32:58 +project.c
  546.    18805    4383 76.6% 29-Oct-96 19:32:58 +quadric.c
  547.     9058    3843 57.5% 29-Oct-96 19:32:52 +README1
  548.     1500     762 49.2% 29-Oct-96 19:32:52 +README2
  549.        0       0  0.0% 14-Oct-96 00:03:00 +SCOPTIONS
  550.     2615    1230 52.9% 14-Oct-96 00:03:00 +Smakefile
  551.     7363    2041 72.2% 29-Oct-96 19:32:58 +tess.c
  552.     2278    1025 55.0% 29-Oct-96 19:32:58 +tess.h
  553.     9353    1919 79.4% 29-Oct-96 19:32:58 +tesselat.c
  554.    17343    5875 66.1% 14-Oct-96 00:03:00 +Awindow.c
  555.     2062     635 69.2% 29-Oct-96 19:32:58 +cursor.c
  556.     8835    1864 78.9% 29-Oct-96 19:32:58 +event.c
  557.   273995   45737 83.3% 29-Oct-96 19:33:00 +font.c
  558.     8621    1633 81.0% 29-Oct-96 19:33:00 +getset.c
  559.     4851    1392 71.3% 29-Oct-96 19:33:00 +image.c
  560.      596     317 46.8% 29-Oct-96 19:32:54 +Imakefile
  561.     2026    1046 48.3% 29-Oct-96 19:32:54 +Makefile
  562.     1505     857 43.0% 29-Oct-96 19:32:54 +Makefile.NeXT
  563.     1502     545 63.7% 29-Oct-96 19:32:54 +mesatkos2.def
  564.      118      87 26.2% 29-Oct-96 19:32:54 +MesaTkos2.rsp
  565.      997     437 56.1% 29-Oct-96 19:33:00 +private.h
  566.        0       0  0.0% 14-Oct-96 00:03:00 +SCOPTIONS
  567.    12406    1424 88.5% 29-Oct-96 19:33:00 +shapes.c
  568.     2665    1230 53.8% 14-Oct-96 00:03:00 +Smakefile
  569.    28888    8384 70.9% 29-Oct-96 19:33:00 +tkwndws.c
  570.    19572    3654 81.3% 29-Oct-96 19:33:02 +window.c
  571.    10460    2466 76.4% 29-Oct-96 19:33:02 +accum.c
  572.     1427     719 49.6% 29-Oct-96 19:33:02 +accum.h
  573.     3477    1300 62.6% 29-Oct-96 19:33:02 +alpha.c
  574.     1235     682 44.7% 29-Oct-96 19:33:02 +alpha.h
  575.     6526    1734 73.4% 29-Oct-96 19:33:02 +alphabuf.c
  576.     2350     800 65.9% 29-Oct-96 19:33:02 +alphabuf.h
  577.    60253   14431 76.0% 14-Oct-96 00:02:58 +AmigaMesa.c
  578.    66138   10153 84.6% 29-Oct-96 19:33:02 +api.c
  579.    32654    5963 81.7% 14-Oct-96 00:02:58 +api1.c
  580.    35601    5448 84.6% 14-Oct-96 00:02:58 +api2.c
  581.    19900    3861 80.5% 29-Oct-96 19:33:02 +attrib.c
  582.     1270     659 48.1% 29-Oct-96 19:33:02 +attrib.h
  583.     5619    2002 64.3% 29-Oct-96 19:33:02 +bitmap.c
  584.     1791     740 58.6% 29-Oct-96 19:33:02 +bitmap.h
  585.    17528    3831 78.1% 29-Oct-96 19:33:04 +blend.c
  586.     1714     780 54.4% 29-Oct-96 19:33:04 +blend.h
  587.     3825    1290 66.2% 29-Oct-96 19:33:04 +bresenhm.c
  588.     4946    1519 69.2% 29-Oct-96 19:33:04 +bresenhm.h
  589.    28049    6205 77.8% 29-Oct-96 19:33:04 +clip.c
  590.     1968     841 57.2% 29-Oct-96 19:33:04 +clip.h
  591.    40748    7972 80.4% 29-Oct-96 19:33:04 +cmesa.c
  592.     3224    1376 57.3% 29-Oct-96 19:33:04 +config.h
  593.    45382   11073 75.6% 29-Oct-96 19:33:04 +context.c
  594.     4070    1502 63.0% 29-Oct-96 19:33:04 +context.h
  595.    14695    3161 78.4% 29-Oct-96 19:33:04 +copypix.c
  596.     1227     674 45.0% 29-Oct-96 19:33:04 +copypix.h
  597.    11882    3335 71.9% 29-Oct-96 19:33:04 +dd.h
  598.    18564    4670 74.8% 29-Oct-96 19:33:06 +ddsample.c
  599.     7008    1098 84.3% 29-Oct-96 19:32:54 +depend
  600.    19595    3726 80.9% 29-Oct-96 19:33:06 +depth.c
  601.     3040    1017 66.5% 29-Oct-96 19:33:06 +depth.h
  602.    71905   14220 80.2% 29-Oct-96 19:33:06 +dlist.c
  603.    13559    2435 82.0% 29-Oct-96 19:33:06 +dlist.h
  604.    56559   10518 81.4% 29-Oct-96 19:33:06 +draw.c
  605.     2021     819 59.4% 29-Oct-96 19:33:06 +draw.h
  606.    28767    5754 79.9% 29-Oct-96 19:33:06 +drawpix.c
  607.     1318     683 48.1% 29-Oct-96 19:33:06 +drawpix.h
  608.    15394    2997 80.5% 29-Oct-96 19:33:06 +enable.c
  609.     1344     670 50.1% 29-Oct-96 19:33:06 +enable.h
  610.    73269   11029 84.9% 29-Oct-96 19:33:08 +eval.c
  611.     3555     976 72.5% 29-Oct-96 19:33:08 +eval.h
  612.     9512    2285 75.9% 29-Oct-96 19:33:08 +feedback.c
  613.     2086     898 56.9% 29-Oct-96 19:33:08 +feedback.h
  614.     2030     931 54.1% 29-Oct-96 19:33:08 +fixed.h
  615.    11024    2277 79.3% 29-Oct-96 19:33:08 +fog.c
  616.     1694     767 54.7% 29-Oct-96 19:33:08 +fog.h
  617.    93457   15123 83.8% 29-Oct-96 19:33:08 +get.c
  618.     1341     673 49.8% 29-Oct-96 19:33:08 +get.h
  619.    38987    9511 75.6% 29-Oct-96 19:33:08 +glx.c
  620.    16136    3586 77.7% 29-Oct-96 19:33:10 +image.c
  621.     2006     852 57.5% 29-Oct-96 19:33:10 +image.h
  622.     1474     582 60.5% 29-Oct-96 19:32:54 +Imakefile
  623.     4874    1605 67.0% 29-Oct-96 19:33:10 +interp.c
  624.     3432    1338 61.0% 29-Oct-96 19:33:10 +interp.h
  625.    41001    8892 78.3% 29-Oct-96 19:33:10 +light.c
  626.     3448     952 72.3% 29-Oct-96 19:33:10 +light.h
  627.    22832    4167 81.7% 29-Oct-96 19:33:10 +lines.c
  628.     1230     665 45.9% 29-Oct-96 19:33:10 +lines.h
  629.     6678    1381 79.3% 29-Oct-96 19:33:10 +logic.c
  630.     1398     711 49.1% 29-Oct-96 19:33:10 +logic.h
  631.     5816    2145 63.1% 29-Oct-96 19:33:10 +macros.h
  632.     2286    1184 48.2% 29-Oct-96 19:32:54 +Makefile
  633.     2076    1114 46.3% 29-Oct-96 19:32:54 +Makefile.NeXT
  634.     4890    1398 71.4% 29-Oct-96 19:33:10 +masking.c
  635.     2376     849 64.2% 29-Oct-96 19:33:10 +masking.h
  636.    18145    5392 70.2% 29-Oct-96 19:33:10 +matrix.c
  637.     2114     852 59.6% 29-Oct-96 19:33:10 +matrix.h
  638.    10525    2398 77.2% 29-Oct-96 19:32:54 +MesaGLos2.def
  639.      620     254 59.0% 29-Oct-96 19:32:54 +MesaGLos2.rsp
  640.    12013    3028 74.7% 29-Oct-96 19:33:10 +misc.c
  641.     1734     778 55.1% 29-Oct-96 19:33:12 +misc.h
  642.    24625    5597 77.2% 29-Oct-96 19:33:12 +osmesa.c
  643.    12756    2740 78.5% 29-Oct-96 19:33:12 +pb.c
  644.     4060    1503 62.9% 29-Oct-96 19:33:12 +pb.h
  645.    25027    4779 80.9% 29-Oct-96 19:33:12 +pixel.c
  646.     2564     919 64.1% 29-Oct-96 19:33:12 +pixel.h
  647.    17293    3660 78.8% 29-Oct-96 19:33:12 +pointers.c
  648.     1118     632 43.4% 29-Oct-96 19:33:12 +pointers.h
  649.    14337    3116 78.2% 29-Oct-96 19:33:12 +points.c
  650.     1155     647 43.9% 29-Oct-96 19:33:12 +points.h
  651.     3630    1242 65.7% 29-Oct-96 19:33:12 +polygon.c
  652.     1484     715 51.8% 29-Oct-96 19:33:12 +polygon.h
  653.    23824    4277 82.0% 29-Oct-96 19:33:12 +readpix.c
  654.     1239     676 45.4% 29-Oct-96 19:33:12 +readpix.h
  655.     2833    1235 56.4% 29-Oct-96 19:33:12 +scissor.c
  656.     1465     716 51.1% 29-Oct-96 19:33:14 +scissor.h
  657.        0       0  0.0% 14-Oct-96 00:02:58 +SCOPTIONS
  658.     4739    1893 60.0% 14-Oct-96 00:02:58 +Smakefile
  659.    24365    4206 82.7% 29-Oct-96 19:33:14 +span.c
  660.     2447     824 66.3% 29-Oct-96 19:33:14 +span.h
  661.    22677    4242 81.2% 29-Oct-96 19:33:14 +stencil.c
  662.     2391     857 64.1% 29-Oct-96 19:33:14 +stencil.h
  663.    13317    3085 76.8% 29-Oct-96 19:33:14 +svgamesa.c
  664.    44705    7349 83.5% 29-Oct-96 19:33:14 +teximage.c
  665.     4792    1066 77.7% 29-Oct-96 19:33:14 +teximage.h
  666.    10318    2392 76.8% 29-Oct-96 19:33:14 +texobj.c
  667.     1910     799 58.1% 29-Oct-96 19:33:14 +texobj.h
  668.    64430    9352 85.4% 29-Oct-96 19:33:14 +texture.c
  669.     3472     959 72.3% 29-Oct-96 19:33:14 +texture.h
  670.    19116    3961 79.2% 29-Oct-96 19:33:16 +triangle.c
  671.     1110     627 43.5% 29-Oct-96 19:33:16 +triangle.h
  672.    28948    7935 72.5% 29-Oct-96 19:33:16 +tritemp.h
  673.    38704   10059 74.0% 29-Oct-96 19:33:16 +types.h
  674.    40643    5923 85.4% 29-Oct-96 19:33:16 +varray.c
  675.     3127     898 71.2% 29-Oct-96 19:33:16 +varray.h
  676.     1319     738 44.0% 29-Oct-96 19:33:16 +vb.c
  677.     3844    1681 56.2% 29-Oct-96 19:33:16 +vb.h
  678.     5256    1369 73.9% 29-Oct-96 19:33:16 +vertex.c
  679.     2254     809 64.1% 29-Oct-96 19:33:16 +vertex.h
  680.     3032    1362 55.0% 29-Oct-96 19:33:16 +winpos.c
  681.     2263     791 65.0% 29-Oct-96 19:33:16 +winpos.h
  682.    25669    6327 75.3% 29-Oct-96 19:33:16 +wmesa.c
  683.     9180    3434 62.5% 29-Oct-96 19:33:18 +xfonts.c
  684.     7241    2006 72.2% 29-Oct-96 19:33:18 +xform.c
  685.     2541    1068 57.9% 29-Oct-96 19:33:18 +xform.h
  686.    41091   11413 72.2% 29-Oct-96 19:33:18 +xmesa1.c
  687.    86785   10498 87.9% 29-Oct-96 19:33:18 +xmesa2.c
  688.    56948    7251 87.2% 29-Oct-96 19:33:18 +xmesa3.c
  689.    10630    3874 63.5% 29-Oct-96 19:33:18 +xmesaP.h
  690.      423     260 38.5% 29-Oct-96 19:34:12 +errcheck.c
  691.     1380     610 55.7% 29-Oct-96 19:34:12 +glutskel.c
  692.      462     243 47.4% 29-Oct-96 19:34:12 +idproj.c
  693.     2578    1045 59.4% 29-Oct-96 19:34:12 +mwmborder.c
  694.     1346     410 69.5% 29-Oct-96 19:34:12 +projshad.c
  695.      440     261 40.6% 29-Oct-96 19:34:12 +README
  696.      151     118 21.8% 29-Oct-96 19:34:12 +readtex.c
  697.      849     413 51.3% 29-Oct-96 19:34:12 +winpos.c
  698.      136     106 22.0% 29-Oct-96 19:34:12 +xalloccolor.c
  699.    10369    4373 57.8% 29-Oct-96 19:32:48 +VERSIONS
  700.     1289     665 48.4% 29-Oct-96 19:33:46 +ChangeLog
  701.    16009    5395 66.3% 29-Oct-96 19:33:48 +config.guess
  702.    16318    5310 67.4% 29-Oct-96 19:33:48 +config.sub
  703.    64193   17069 73.4% 29-Oct-96 19:33:48 +configure
  704.     4984    2040 59.0% 29-Oct-96 19:33:48 +configure.in
  705.    17976    6986 61.1% 29-Oct-96 19:33:46 +COPYING
  706.     1274     610 52.1% 29-Oct-96 19:33:48 +ChangeLog
  707.      251     158 37.0% 29-Oct-96 19:33:48 +Cube
  708.     9022    2965 67.1% 29-Oct-96 19:33:50 +cube.c
  709.      648     306 52.7% 29-Oct-96 19:33:48 +Ed
  710.    21626    6170 71.4% 29-Oct-96 19:33:50 +ed.c
  711.    10887    3001 72.4% 29-Oct-96 19:33:50 +events
  712.     7446    2160 70.9% 29-Oct-96 19:33:48 +Makefile.in
  713.      355     190 46.4% 29-Oct-96 19:33:48 +Mcube
  714.    10192    3218 68.4% 29-Oct-96 19:33:50 +mcube.c
  715.      535     311 41.8% 29-Oct-96 19:33:48 +Tea
  716.    18882    6387 66.1% 29-Oct-96 19:33:50 +tea.c
  717.     1238     536 56.7% 29-Oct-96 19:33:50 +ChangeLog
  718.     6980    1903 72.7% 29-Oct-96 19:33:50 +GLwDrawA.h
  719.     4362    1580 63.7% 29-Oct-96 19:33:50 +GLwDrawAP.h
  720.     1051     631 39.9% 29-Oct-96 19:33:50 +GLwMDrawA.h
  721.     1054     632 40.0% 29-Oct-96 19:33:50 +GLwMDrawAP.h
  722.     2030    1014 50.0% 29-Oct-96 19:33:50 +Makefile.in
  723.     1693     752 55.5% 29-Oct-96 19:33:50 +MesaDrawingArea.h
  724.     3639    1086 70.1% 29-Oct-96 19:33:50 +MesaDrawingAreaP.h
  725.     4201    1067 74.6% 29-Oct-96 19:33:50 +MesaWorkstation.h
  726.     3204    1124 64.9% 29-Oct-96 19:33:50 +MesaWorkstationP.h
  727.      780     459 41.1% 29-Oct-96 19:33:48 +INSTALL
  728.     4771    1857 61.0% 29-Oct-96 19:33:50 +install-sh
  729.     4388    1618 63.1% 29-Oct-96 19:33:48 +Makefile.in
  730.      420     231 45.0% 29-Oct-96 19:33:52 +ChangeLog
  731.     4354    1887 56.6% 29-Oct-96 19:33:52 +GLwCreateMDrawingArea.3x
  732.     2032     683 66.3% 29-Oct-96 19:33:52 +GLwCreateMDrawingArea.html
  733.      971     464 52.2% 29-Oct-96 19:33:52 +GLwCreateMDrawingArea.pod
  734.    29052    8528 70.6% 29-Oct-96 19:33:52 +GLwDrawingArea.3x
  735.    28843    7582 73.7% 29-Oct-96 19:33:52 +GLwDrawingArea.html
  736.    24689    6902 72.0% 29-Oct-96 19:33:52 +GLwDrawingArea.pod
  737.     3905    1745 55.3% 29-Oct-96 19:33:52 +GLwDrawingAreaMakeCurrent.3x
  738.     1162     492 57.6% 29-Oct-96 19:33:52 +GLwDrawingAreaMakeCurrent.html
  739.      545     308 43.4% 29-Oct-96 19:33:52 +GLwDrawingAreaMakeCurrent.pod
  740.     3868    1728 55.3% 29-Oct-96 19:33:52 +GLwDrawingAreaSwapBuffers.3x
  741.     1127     476 57.7% 29-Oct-96 19:33:52 +GLwDrawingAreaSwapBuffers.html
  742.      510     295 42.1% 29-Oct-96 19:33:52 +GLwDrawingAreaSwapBuffers.pod
  743.     2477    1164 53.0% 29-Oct-96 19:33:54 +Makefile.in
  744.     5969    2300 61.4% 29-Oct-96 19:33:54 +MesaDrawingArea.3x
  745.     3613    1079 70.1% 29-Oct-96 19:33:54 +MesaDrawingArea.html
  746.     2560     856 66.5% 29-Oct-96 19:33:54 +MesaDrawingArea.pod
  747.     7709    2554 66.8% 29-Oct-96 19:33:54 +MesaWorkstation.3x
  748.     9019    1452 83.9% 29-Oct-96 19:33:54 +MesaWorkstation.html
  749.     4141    1089 73.7% 29-Oct-96 19:33:54 +MesaWorkstation.pod
  750.     2675    1404 47.5% 29-Oct-96 19:33:48 +README
  751.     3616    1404 61.1% 29-Oct-96 19:33:54 +ChangeLog
  752.     1298     741 42.9% 29-Oct-96 19:33:54 +GLwCreateMDrawingArea.c
  753.    20799    5906 71.6% 29-Oct-96 19:33:54 +GLwDrawingArea.c
  754.     1224     709 42.0% 29-Oct-96 19:33:54 +GLwDrawingAreaMakeCurrent.c
  755.     1182     689 41.7% 29-Oct-96 19:33:54 +GLwDrawingAreaSwapBuffers.c
  756.     1366     770 43.6% 29-Oct-96 19:33:54 +GLwMakeCurrent.c
  757.     1061     628 40.8% 29-Oct-96 19:33:54 +GLwMDrawingArea.c
  758.     5104    1595 68.7% 29-Oct-96 19:33:56 +Makefile.in
  759.     8603    2804 67.4% 29-Oct-96 19:33:56 +MesaDrawingArea.c
  760.    20042    4608 77.0% 29-Oct-96 19:33:56 +MesaWorkstation.c
  761.     1025     523 48.9% 29-Oct-96 19:33:48 +TODO
  762.    14298    4620 67.6% 29-Oct-96 19:33:56 +boilerplate.c
  763.      259     101 61.0% 29-Oct-96 19:33:56 +depend
  764.    24543    6704 72.6% 29-Oct-96 19:33:56 +GLwDrawA.c
  765.     6611    2407 63.5% 29-Oct-96 19:33:56 +GLwDrawA.h
  766.     4291    1650 61.5% 29-Oct-96 19:33:56 +GLwDrawAP.h
  767.     2030    1120 44.8% 29-Oct-96 19:33:56 +GLwMDrawA.c
  768.     2030    1120 44.8% 29-Oct-96 19:33:56 +GLwMDrawA.h
  769.     2031    1121 44.8% 29-Oct-96 19:33:56 +GLwMDrawAP.h
  770.      873     487 44.2% 29-Oct-96 19:33:56 +Makefile
  771.     2490    1352 45.7% 29-Oct-96 19:33:56 +README
  772.     3914    1827 53.3% 29-Oct-96 19:33:56 +ROBOT.C
  773.     4929    2138 56.6% 29-Oct-96 19:33:56 +TEA.C
  774.      227     157 30.8% 29-Oct-96 19:33:56 +BOUNC-MS.DEF
  775.     1552     184 88.1% 29-Oct-96 19:33:56 +BOUNC-MS.DPD
  776.    28288    9280 67.1% 29-Oct-96 19:33:58 +BOUNC-MS.IDE
  777.      148     125 15.5% 29-Oct-96 19:33:58 +BOUNC-MS.LNK
  778.     6479    1699 73.7% 29-Oct-96 19:33:58 +BOUNC-MS.MAK
  779.    23117     696 96.9% 29-Oct-96 19:33:58 +BOUNC-MS.OPN
  780.     3615     519 85.6% 29-Oct-96 19:33:58 +BOUNC-MS.PRJ
  781.     2826    1234 56.3% 29-Oct-96 19:33:58 +BOUNCE.C
  782.     2816    1015 63.9% 29-Oct-96 19:33:58 +SPIN.C
  783.       69      58 15.9% 29-Oct-96 19:33:58 +GLAUX.DEF
  784.     1927     231 88.0% 29-Oct-96 19:33:58 +GLAUX.DPD
  785.    43578   12953 70.2% 29-Oct-96 19:33:58 +GLAUX.IDE
  786.      224      96 57.1% 29-Oct-96 19:33:58 +GLAUX.LIK
  787.      231     109 52.8% 29-Oct-96 19:33:58 +GLAUX.LNK
  788.     7980    1920 75.9% 29-Oct-96 19:33:58 +GLAUX.MAK
  789.     3727     524 85.9% 29-Oct-96 19:33:58 +GLAUX.PRJ
  790.     6392    1420 77.7% 29-Oct-96 19:33:58 +BOUNCE.MAK
  791.     6368    1415 77.7% 29-Oct-96 19:34:00 +GEARS.MAK
  792.     6929    1353 80.4% 29-Oct-96 19:34:00 +GLAUX.MAK
  793.      742     455 38.6% 29-Oct-96 19:34:00 +README
  794.     6392    1418 77.8% 29-Oct-96 19:34:00 +SHADOW.MAK
  795.     6344    1414 77.7% 29-Oct-96 19:34:00 +SPIN.MAK
  796.     4575    1176 74.2% 29-Oct-96 19:34:00 +TK.MAK
  797.     6445    1377 78.6% 29-Oct-96 19:34:00 +WAVE.MAK
  798.     6856    1336 80.5% 29-Oct-96 19:34:00 +WINGLU.MAK
  799.    24914    2797 88.7% 29-Oct-96 19:34:00 +WINMESA.MAK
  800.    15186   14672  3.3% 29-Oct-96 19:34:00 +WMESA128.ZIP
  801.     3236    1519 53.0% 29-Oct-96 19:34:00 +README
  802.      223     153 31.3% 29-Oct-96 19:34:00 +ROBOT-MS.DEF
  803.       86      62 27.9% 29-Oct-96 19:34:00 +ROBOT-MS.DPD
  804.      152     121 20.3% 29-Oct-96 19:34:00 +ROBOT-MS.LNK
  805.     4178    1300 68.8% 29-Oct-96 19:34:00 +ROBOT-MS.MAK
  806.    23117     694 96.9% 29-Oct-96 19:34:02 +ROBOT-MS.OPN
  807.      415     186 55.1% 29-Oct-96 19:34:02 +ROBOT-MS.PRJ
  808.      223     153 31.3% 29-Oct-96 19:34:02 +SPIN-MS.DEF
  809.     1544     182 88.2% 29-Oct-96 19:34:02 +SPIN-MS.DPD
  810.      145     122 15.8% 29-Oct-96 19:34:02 +SPIN-MS.LNK
  811.     6473    1688 73.9% 29-Oct-96 19:34:02 +SPIN-MS.MAK
  812.    37749     996 97.3% 29-Oct-96 19:34:02 +SPIN-MS.OPN
  813.     3609     519 85.6% 29-Oct-96 19:34:02 +SPIN-MS.PRJ
  814.      223     153 31.3% 29-Oct-96 19:34:02 +TEA-MS.DEF
  815.      148      72 51.3% 29-Oct-96 19:34:02 +TEA-MS.DPD
  816.      137     116 15.3% 29-Oct-96 19:34:02 +TEA-MS.LNK
  817.     4146    1293 68.8% 29-Oct-96 19:34:02 +TEA-MS.MAK
  818.    23117     694 96.9% 29-Oct-96 19:34:02 +TEA-MS.OPN
  819.      384     181 52.8% 29-Oct-96 19:34:02 +TEA-MS.PRJ
  820.      224     153 31.6% 29-Oct-96 19:34:02 +TEST0-MS.DEF
  821.       76      61 19.7% 29-Oct-96 19:34:02 +TEST0-MS.DPD
  822.      121     101 16.5% 29-Oct-96 19:34:02 +TEST0-MS.LNK
  823.     4172    1291 69.0% 29-Oct-96 19:34:02 +TEST0-MS.MAK
  824.    37749     996 97.3% 29-Oct-96 19:34:04 +TEST0-MS.OPN
  825.      441     181 58.9% 29-Oct-96 19:34:04 +TEST0-MS.PRJ
  826.       69      58 15.9% 29-Oct-96 19:34:04 +TK.DEF
  827.      554     149 73.1% 29-Oct-96 19:34:04 +TK.DPD
  828.    26230    8536 67.4% 29-Oct-96 19:34:04 +TK.IDE
  829.       50      50  0.0% 29-Oct-96 19:34:04 +TK.LIK
  830.       72      67  6.9% 29-Oct-96 19:34:04 +TK.LNK
  831.     6702    1730 74.1% 29-Oct-96 19:34:04 +TK.MAK
  832.     3496     487 86.0% 29-Oct-96 19:34:04 +TK.PRJ
  833.      223     153 31.3% 29-Oct-96 19:34:04 +WAVE-MS.DEF
  834.     1134     171 84.9% 29-Oct-96 19:34:04 +WAVE-MS.DPD
  835.      156     126 19.2% 29-Oct-96 19:34:04 +WAVE-MS.LNK
  836.     6474    1687 73.9% 29-Oct-96 19:34:04 +WAVE-MS.MAK
  837.     3586     509 85.8% 29-Oct-96 19:34:04 +WAVE-MS.PRJ
  838.       69      58 15.9% 29-Oct-96 19:34:04 +WINGLU.DEF
  839.      734     129 82.4% 29-Oct-96 19:34:04 +WINGLU.DPD
  840.    42078   12631 69.9% 29-Oct-96 19:34:06 +WINGLU.IDE
  841.      198      89 55.0% 29-Oct-96 19:34:06 +WINGLU.LIK
  842.      203     105 48.2% 29-Oct-96 19:34:06 +WINGLU.LNK
  843.     5545    1525 72.4% 29-Oct-96 19:34:06 +WINGLU.MAK
  844.      624     211 66.1% 29-Oct-96 19:34:06 +WINGLU.PRJ
  845.       71      58 18.3% 29-Oct-96 19:34:06 +WINMESA.DEF
  846.     7959     818 89.7% 29-Oct-96 19:34:06 +WINMESA.DPD
  847.    46062   14525 68.4% 29-Oct-96 19:34:06 +WINMESA.IDE
  848.     1090     233 78.6% 29-Oct-96 19:34:06 +WINMESA.LIK
  849.     1032     241 76.6% 29-Oct-96 19:34:06 +WINMESA.LNK
  850.    14639    2830 80.6% 29-Oct-96 19:34:06 +WINMESA.MAK
  851.    23117     700 96.9% 29-Oct-96 19:34:06 +WINMESA.OPN
  852.     5522     813 85.2% 29-Oct-96 19:34:06 +WINMESA.PRJ
  853.      546     270 50.5% 29-Oct-96 19:34:06 +accumvc4.mak
  854.      536     267 50.1% 29-Oct-96 19:34:06 +nurbvc4.mak
  855.      542     269 50.3% 29-Oct-96 19:34:06 +olympicvc4.mak
  856.      399     241 39.5% 29-Oct-96 19:34:06 +README
  857.      546     271 50.3% 29-Oct-96 19:34:06 +shapevc4.mak
  858.      538     267 50.3% 29-Oct-96 19:34:08 +speedvc4.mak
  859.      543     270 50.2% 29-Oct-96 19:34:08 +wavevc4.mak
  860.      352     213 39.4% 29-Oct-96 19:34:08 +wmglauxvc4.mak
  861.      324     195 39.8% 29-Oct-96 19:34:08 +wmgluvc4.mak
  862.      851     419 50.7% 29-Oct-96 19:34:08 +wmglvc4.mak
  863.      287     178 37.9% 29-Oct-96 19:34:08 +wtkvc4.mak
  864. -------- ------- ----- --------- --------
  865.  5702011 1529758 73.1% 30-Oct-96 13:14:26   584 files
  866.